Skip to content

deps(dependabot): bump the all-dependencies group across 1 directory with 4 updates - #13

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/main/all-dependencies-d2be78b3a0
Closed

deps(dependabot): bump the all-dependencies group across 1 directory with 4 updates#13
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/main/all-dependencies-d2be78b3a0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown

Updates the requirements on utilo, iamraw, camelot-py and setuptools to permit the latest version.
Updates utilo to 2.109.1

Release notes

Sourced from utilo's releases.

v2.109.1 (2026-07-18)

This release is published under the MIT License.

Bug Fixes

  • secret: Make password hashing stable (0684fc1)

Chores

  • docker: Ugprade baw image (eb8caa1)

  • make: Do not release on release tag (8671c61)

  • release: Release on every commit (654b01e)

  • requirements: Enable iamraw (a555650)

  • requirements: Upgrade pyproject.toml (ef44f3b)

Refactoring

  • string: Enable unit test (94af537)

Testing

  • import: Remove useless test (ebc239f)

  • pages: Enable unit test (efdc194)


Detailed Changes: v2.109.0...v2.109.1

Changelog

Sourced from utilo's changelog.

v2.109.1 (2026-07-18)

Bug Fixes

  • secret: Make password hashing stable (0684fc1)

Chores

  • docker: Ugprade baw image (eb8caa1)

  • make: Do not release on release tag (8671c61)

  • release: Release on every commit (654b01e)

  • requirements: Enable iamraw (a555650)

  • requirements: Upgrade pyproject.toml (ef44f3b)

Refactoring

  • string: Enable unit test (94af537)

Testing

  • import: Remove useless test (ebc239f)

  • pages: Enable unit test (efdc194)

v2.109.0 (2026-06-04)

Features

  • path: Add parameter to normpath to improve display/logging (6cf5541)

v2.108.0 (2026-06-02)

Bug Fixes

... (truncated)

Commits
  • bb897c7 2.109.1
  • eb8caa1 chore(docker): ugprade baw image
  • a2d04d3 Merge pull request #12 from anaticulae/refactor/enable_iamraw
  • ebc239f test(import): remove useless test
  • 94af537 refactor(string): enable unit test
  • 0684fc1 fix(secret): make password hashing stable
  • 8671c61 chore(make): do not release on release tag
  • 654b01e chore(release): release on every commit
  • efdc194 test(pages): enable unit test
  • ef44f3b chore(requirements): upgrade pyproject.toml
  • Additional commits viewable in compare view

Updates iamraw to 4.92.0

Release notes

Sourced from iamraw's releases.

v4.92.0 (2026-07-07)

This release is published under the MIT License.

Bug Fixes

  • iamraw: Use dynamic version (f194cb8)

Chores

  • docker: Add resource storing location (626ee15)

  • make: Adjust tmp path (11ace2f)

  • make: Do not run release on exiting tag (e59b2e5)

  • make: Generate all step on small companies (584c8a6)

  • pyproject: Add missing generators (6566367)

  • pyproject: Release on every commit (32d970c)

  • requirements: Upgrade pyproject.toml (3ec6cce)

  • resources: Enable headnote (815af1b)

  • resources: Enable missing generators (e7fa380)

Features

  • line: Do not fail on missing horizontals file (5202c1d)

Testing

  • header: Enable unit tests (53e971c)

Detailed Changes: v4.91.7...v4.92.0

Changelog

Sourced from iamraw's changelog.

v4.92.0 (2026-07-07)

Bug Fixes

  • iamraw: Use dynamic version (f194cb8)

Chores

  • docker: Add resource storing location (626ee15)

  • make: Adjust tmp path (11ace2f)

  • make: Do not run release on exiting tag (e59b2e5)

  • make: Generate all step on small companies (584c8a6)

  • pyproject: Add missing generators (6566367)

  • pyproject: Release on every commit (32d970c)

  • requirements: Upgrade pyproject.toml (3ec6cce)

  • resources: Enable headnote (815af1b)

  • resources: Enable missing generators (e7fa380)

Features

  • line: Do not fail on missing horizontals file (5202c1d)

Testing

  • header: Enable unit tests (53e971c)

v4.91.7 (2026-06-20)

Chores

... (truncated)

Commits
  • bb37d3b 4.92.0
  • 5fe8200 Merge pull request #15 from anaticulae/feat/do-not-fail-on-missing-horizontals
  • 626ee15 chore(docker): add resource storing location
  • 11ace2f chore(make): adjust tmp path
  • e59b2e5 chore(make): do not run release on exiting tag
  • 815af1b chore(resources): enable headnote
  • 584c8a6 chore(make): generate all step on small companies
  • 5202c1d feat(line): do not fail on missing horizontals file
  • 53e971c test(header): enable unit tests
  • f194cb8 fix(iamraw): use dynamic version
  • Additional commits viewable in compare view

Updates camelot-py to 2.0.0

Release notes

Sourced from camelot-py's releases.

v2.0.0

[2.0.0] — 2026-06-04

The 2.0 release rolls up a substantial backend migration, the resulting performance work, an optional neural (Table Transformer) backend for borderless and scanned tables, and a handful of small but user-visible breaking changes. Heads-up if upgrading from 1.0.x — see the migration guide:

Breaking

  • Dropped Python 3.9 (EOL October 2025). Minimum supported is now Python 3.10. (#740)
  • flavor="lattice" default line_scale changed from 40 to 15 to match the long-standing implementation (the CLI and read_pdf docstring used to say 40 but the Lattice parser always defaulted to 15). Tables that relied on the documented-but-unimplemented 40 will need read_pdf(..., line_scale=40) explicitly. (#709)
  • Table.to_excel now defaults to index=False, header=False to match Table.to_csv. Excel exports no longer carry the pandas auto-generated row index / column header by default. Opt back in with table.to_excel(path, index=True, header=True). (#711)
  • TableList constructor materialises its iterable input to a list immediately, so bool() and len() work on TableList(generator()) inputs. A generator passed in will be exhausted at construction time rather than at first access. (#710)
  • PDFHandler.pages is a property (was an attribute). Reads work unchanged; the value is now resolved lazily on first access. No callers in the wild set it, but if you subclassed and overrode it as an attribute, that no longer works. (#732)
  • PDF backend swapped from pypdf + pdfminer.six to playa-pdf. The dependency install set is smaller, encrypted-PDF handling is more accurate, and parser hot paths shed several layers of per-page-temp-PDF dance. Pure import camelot callers should see no API change.

Added

  • Optional neural flavor="ml" backend (Table Transformer / TATR). A neural model supplies the row/column/spanning-cell structure while cell text is filled from the PDF's own text layer — the model never emits cell text, so it cannot hallucinate or alter a value. Aimed at borderless tables, where the heuristic parsers plateau: on the FinTabNet borderless benchmark it roughly doubles TEDS (~0.20 → ~0.37) over network/hybrid. Heavy dependencies are optional and imported lazily — pip install "camelot-py[ml]" — so import camelot and the other flavors never load PyTorch. The box→grid post-processing and image→PDF mapping are pure (torch-free) and unit-tested. (#809)
  • flavor="ml" reads scanned / image-only PDFs via optional OCR. With no text layer (ocr="auto", the default) — or always with ocr=True — cell

... (truncated)

Changelog

Sourced from camelot-py's changelog.

[2.0.0] — 2026-06-04

The 2.0 release rolls up a substantial backend migration, the resulting performance work, an optional neural (Table Transformer) backend for borderless and scanned tables, and a handful of small but user-visible breaking changes. Heads-up if upgrading from 1.0.x — see the migration guide:

Breaking

  • Dropped Python 3.9 (EOL October 2025). Minimum supported is now Python 3.10. (#740)
  • flavor="lattice" default line_scale changed from 40 to 15 to match the long-standing implementation (the CLI and read_pdf docstring used to say 40 but the Lattice parser always defaulted to 15). Tables that relied on the documented-but-unimplemented 40 will need read_pdf(..., line_scale=40) explicitly. (#709)
  • Table.to_excel now defaults to index=False, header=False to match Table.to_csv. Excel exports no longer carry the pandas auto-generated row index / column header by default. Opt back in with table.to_excel(path, index=True, header=True). (#711)
  • TableList constructor materialises its iterable input to a list immediately, so bool() and len() work on TableList(generator()) inputs. A generator passed in will be exhausted at construction time rather than at first access. (#710)
  • PDFHandler.pages is a property (was an attribute). Reads work unchanged; the value is now resolved lazily on first access. No callers in the wild set it, but if you subclassed and overrode it as an attribute, that no longer works. (#732)
  • PDF backend swapped from pypdf + pdfminer.six to playa-pdf. The dependency install set is smaller, encrypted-PDF handling is more accurate, and parser hot paths shed several layers of per-page-temp-PDF dance. Pure import camelot callers should see no API change.

Added

  • Optional neural flavor="ml" backend (Table Transformer / TATR). A neural model supplies the row/column/spanning-cell structure while cell text is filled from the PDF's own text layer — the model never emits cell text, so it cannot hallucinate or alter a value. Aimed at borderless tables, where the heuristic parsers plateau: on the FinTabNet borderless benchmark it roughly doubles TEDS (~0.20 → ~0.37) over network/hybrid. Heavy dependencies are optional and imported lazily — pip install "camelot-py[ml]" — so import camelot and the other flavors never load PyTorch. The box→grid post-processing and image→PDF mapping are pure (torch-free) and unit-tested. (#809)
  • flavor="ml" reads scanned / image-only PDFs via optional OCR. With no text layer (ocr="auto", the default) — or always with ocr=True — cell text comes from OCR of the rendered page instead of the PDF text layer;

... (truncated)

Commits
  • eef30ac chore(release): prepare 2.0.0 (#816)
  • 42f74e3 fix(utils): content-aware text_in_bbox dedup (#288, #625) (#814)
  • 3906822 docs(comparison): verified camelot-vs-tablers head-to-head (ICDAR-2013) (#813)
  • c227afd fix(release): --clobber the GitHub-release asset upload (unblocks PyPI publis...
  • 40497a3 chore(release): prepare 2.0.0rc1 (version, CHANGELOG, migration guide) (#811)
  • 9f71cf4 docs: parser-selection guide + reflect the ml/ocr backend (benchmark, compari...
  • 15b57ed feat(ml): optional flavor='ml' Table Transformer (TATR) backend — borderless ...
  • f28d479 docs: add the missing text-elements plot to the Network section (#577) (#808)
  • 87bf13a fix(hybrid): default lattice half to engine='combined' (#807)
  • b3c2af1 feat(hybrid): render-free vector+network hybrid (engine='vector') (#806)
  • Additional commits viewable in compare view

Updates setuptools to 83.0.0

Changelog

Sourced from setuptools's changelog.

v83.0.0

Features

  • Require Python 3.10 or later.

Bugfixes

  • MANIFEST.in matching (via FileList) is now insensitive to Unicode normalization form. A pattern authored in one form (e.g. NFC, as typically saved by editors) now matches a file whose name is stored on disk in another (e.g. NFD, as produced by macOS APFS/HFS+). Previously an exclude, global-exclude, recursive-exclude, or prune rule could silently fail to drop a non-ASCII-named file from the source distribution, publishing it despite the exclusion -- see GHSA-h35f-9h28-mq5c.

Deprecations and Removals

  • pypa/distutils#334

v82.0.1

Bugfixes

  • Fix the loading of launcher manifest.xml file. (#5047)
  • Replaced deprecated json.__version__ with fixture in tests. (#5186)

Improved Documentation

  • Add advice about how to improve predictability when installing sdists. (#5168)

Misc

v82.0.0

... (truncated)

Commits
  • 6519f72 Bump version: 82.0.1 → 83.0.0
  • d1151b1 Merge pull request #5250 from pypa/feature/distutils-d7633fbed
  • a2df31e Capture removal of dry_run parameter in changelog.
  • 00144dc Moved newsfragment to the release where it occurred.
  • a4a5a2b Add news fragment.
  • 77470c2 Merge https://github.com/pypa/distutils into feature/distutils-d7633fbed
  • 3c43897 Merge pull request #5247 from pypa/copilot/fix-pypy-version-issue
  • bb6ea66 Bump PyPy from 3.10 to 3.11 in CI workflow
  • a2bc3ac Fix broken intersphinx reference to build's installation docs
  • 2d6a739 Use stacked parametrize decorators instead of itertools.product
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…with 4 updates

Updates the requirements on [utilo](https://github.com/anaticulae/utilo), [iamraw](https://github.com/anaticulae/iamraw), [camelot-py](https://github.com/camelot-dev/camelot) and [setuptools](https://github.com/pypa/setuptools) to permit the latest version.

Updates `utilo` to 2.109.1
- [Release notes](https://github.com/anaticulae/utilo/releases)
- [Changelog](https://github.com/anaticulae/utilo/blob/main/CHANGELOG)
- [Commits](anaticulae/utilo@v2.109.0...v2.109.1)

Updates `iamraw` to 4.92.0
- [Release notes](https://github.com/anaticulae/iamraw/releases)
- [Changelog](https://github.com/anaticulae/iamraw/blob/main/CHANGELOG)
- [Commits](anaticulae/iamraw@v4.91.7...v4.92.0)

Updates `camelot-py` to 2.0.0
- [Release notes](https://github.com/camelot-dev/camelot/releases)
- [Changelog](https://github.com/camelot-dev/camelot/blob/master/CHANGELOG.md)
- [Commits](camelot-dev/camelot@v1.0.9...v2.0.0)

Updates `setuptools` to 83.0.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v82.0.1...v83.0.0)

---
updated-dependencies:
- dependency-name: utilo
  dependency-version: 2.109.1
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: iamraw
  dependency-version: 4.92.0
  dependency-type: direct:production
  dependency-group: all-dependencies
- dependency-name: camelot-py
  dependency-version: 2.0.0
  dependency-type: direct:development
  dependency-group: all-dependencies
- dependency-name: setuptools
  dependency-version: 83.0.0
  dependency-type: direct:development
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jul 20, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 27, 2026
@dependabot
dependabot Bot deleted the dependabot/pip/main/all-dependencies-d2be78b3a0 branch July 27, 2026 10:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants